home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 3-004 ms visual basic pro 30 / 4.imz / 4.IMA / MDINPAD.FR_ / MDINPAD.bin
Text File  |  1993-04-28  |  4KB  |  161 lines

  1. VERSION 2.00
  2. Begin MDIForm frmMDI 
  3.    Caption         =   "Address Database"
  4.    ClientHeight    =   5160
  5.    ClientLeft      =   870
  6.    ClientTop       =   1695
  7.    ClientWidth     =   5715
  8.    Height          =   5850
  9.    Left            =   810
  10.    LinkTopic       =   "MDIForm1"
  11.    Top             =   1065
  12.    Width           =   5835
  13.    Begin PictureBox Picture1 
  14.       Align           =   2  'Align Bottom
  15.       Height          =   495
  16.       Left            =   0
  17.       ScaleHeight     =   465
  18.       ScaleWidth      =   5685
  19.       TabIndex        =   1
  20.       Top             =   4665
  21.       Width           =   5715
  22.       Begin CommandButton Command2 
  23.          Caption         =   " >>"
  24.          Height          =   360
  25.          Left            =   2910
  26.          TabIndex        =   5
  27.          Top             =   75
  28.          Width           =   855
  29.       End
  30.       Begin CommandButton Command1 
  31.          Caption         =   "<<"
  32.          Height          =   360
  33.          Left            =   1935
  34.          TabIndex        =   4
  35.          Top             =   75
  36.          Width           =   825
  37.       End
  38.       Begin TextBox Text2 
  39.          Height          =   285
  40.          Left            =   3870
  41.          TabIndex        =   3
  42.          Text            =   "Total Records : 3"
  43.          Top             =   120
  44.          Width           =   1725
  45.       End
  46.       Begin TextBox Text1 
  47.          Height          =   285
  48.          Left            =   120
  49.          TabIndex        =   2
  50.          Text            =   "Current Record : 1"
  51.          Top             =   120
  52.          Width           =   1695
  53.       End
  54.    End
  55.    Begin PictureBox picToolbar 
  56.       Align           =   1  'Align Top
  57.       BackColor       =   &H8000000F&
  58.       Height          =   435
  59.       Left            =   0
  60.       ScaleHeight     =   405
  61.       ScaleWidth      =   5685
  62.       TabIndex        =   0
  63.       Top             =   0
  64.       Width           =   5715
  65.       Begin Image imgFileOpenButton 
  66.          Height          =   330
  67.          Left            =   330
  68.          Picture         =   MDINPAD.FRX:0000
  69.          Top             =   45
  70.          Width           =   360
  71.       End
  72.       Begin Image imgFileNewButton 
  73.          Height          =   330
  74.          Left            =   45
  75.          Picture         =   MDINPAD.FRX:0182
  76.          Top             =   45
  77.          Width           =   360
  78.       End
  79.    End
  80.    Begin Menu mnuFile 
  81.       Caption         =   "&File"
  82.       Begin Menu mnuFNew 
  83.          Caption         =   "&New"
  84.       End
  85.       Begin Menu mnuFOpen 
  86.          Caption         =   "&Open"
  87.       End
  88.       Begin Menu mnuDash 
  89.          Caption         =   "-"
  90.       End
  91.       Begin Menu mnuFExit 
  92.          Caption         =   "E&xit"
  93.       End
  94.    End
  95.    Begin Menu mnuWindow 
  96.       Caption         =   "&Window"
  97.       Begin Menu mnuWindowTile 
  98.          Caption         =   "&Tile"
  99.       End
  100.       Begin Menu mnuWindowCascade 
  101.          Caption         =   "&Cascade"
  102.       End
  103.    End
  104. End
  105.  
  106.  
  107. Sub imgCopyButton_Click ()
  108.     
  109. End Sub
  110.  
  111. Sub imgCutButton_Click ()
  112.     
  113. End Sub
  114.  
  115. Sub imgPasteButton_Click ()
  116.    
  117. End Sub
  118.  
  119. Sub MDIForm_Load ()
  120.     ReDim NewDoc(2) As New Form2
  121.     Height = Screen.Height - (1 / 6 * Screen.Height)
  122.     Width = Screen.Width - (1 / 2.5 * Screen.Width)
  123.     Left = Screen.Width / 3 - Width / 2
  124.     Top = Screen.Height / 2 - Height / 2
  125.     
  126.     For i = 0 To 2
  127.         NewDoc(i).Show
  128.     Next i
  129.     
  130.     frmMdi.Arrange 0
  131.     
  132.     NewDoc(0).Caption = "Andrew Fuller"
  133.     NewDoc(0).txtName = "AndrewFuller"
  134.     NewDoc(1).Caption = "Michael Suyama"
  135.     NewDoc(1).txtName = "Michael Suyama"
  136.     NewDoc(2).Caption = "Nancy Davolio"
  137.     NewDoc(2).txtName = "Nancy Davolio"
  138.  
  139.  
  140.  
  141. End Sub
  142.  
  143. Sub mnuFExit_Click ()
  144.     End
  145. End Sub
  146.  
  147. Sub mnuFOpen_Click ()
  148. filename$ = "Addrss.txt"
  149. Open filename$ For Input As #1
  150.  
  151. End Sub
  152.  
  153. Sub mnuOptions_Click ()
  154.     
  155. End Sub
  156.  
  157. Sub mnuOToolbar_Click ()
  158.     
  159. End Sub
  160.  
  161.